home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
boosters.arc
/
STIME.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1985-11-03
|
272 b
|
14 lines
{ ---------------
SET TIME of day
--------------- }
Procedure Stime ( hh, mm, ss : integer );
begin
with regs do
begin
cx := swap(hh);
cx := cx or mm;
dx := swap(ss);
ax := $2D00;
intr($21,regs);
end;
end { Stime };